home *** CD-ROM | disk | FTP | other *** search
- /* ===============
- * PedPaneImage.hh
- * ===============
- *
- * Implemented by PedPaneImage.cc
- */
-
- #pragma once
-
- #include "PedPane.hh"
-
- class PedPaneImage : public PedPane {
- public:
- PedPaneImage(PedView &inSuperView);
- virtual ~PedPaneImage();
-
- protected:
- virtual void Draw();
- virtual void Resize(short inWidth, short inHeight);
- };
-